Skip to content

Instantly share code, notes, and snippets.

@sumitkharche
Created January 10, 2020 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumitkharche/3cb814f456d42ba722a2165e45163827 to your computer and use it in GitHub Desktop.
Save sumitkharche/3cb814f456d42ba722a2165e45163827 to your computer and use it in GitHub Desktop.
AutoMapperProfile.cs with conditional mappings
using AutoMapper;
namespace automapper_sample
{
public class AutoMapperProfile : Profile
{
public AutoMapperProfile()
{
CreateMap<StudentDTO, Student>()
.ForMember(dest => dest.City, opt => opt.MapFrom(src => src.CurrentCity))
.ForMember(dest => dest.IsAdult, opt => opt.MapFrom(src => src.Age > 18 ? true : false));
CreateMap<AddressDTO, Address>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment